home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Tool Chest / Development Tools & Languages / • Other Platforms / PCCTS / lang / C / proto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-14  |  548 b   |  25 lines  |  [TEXT/MPS ]

  1. #ifdef __STDC__
  2. char *mystrdup(char *);
  3. struct _ast *zzmk_ast(struct _ast *, int, ...);
  4. struct _ast *bottom(struct _ast *);
  5. struct _ast *defineArgs(struct _ast *, Sym **);
  6. void error(char *);
  7. void error1(char *, char *);
  8. void warn(char *);
  9. void warn1(char *, char *);
  10. Sym *addsym(int, char *,int , struct _ast *, struct _ast *);
  11. #else
  12. char *mystrdup();
  13. struct _ast *zzmk_ast();
  14. struct _ast *bottom();
  15. struct _ast *defineArgs();
  16. void error();
  17. void error1();
  18. void warn();
  19. void warn1();
  20. Sym *addsym();
  21. #endif
  22.  
  23. extern Sym *Globals;
  24. extern Sym *Params;
  25.